home *** CD-ROM | disk | FTP | other *** search
/ Aminet 37 / Aminet 37 (2000)(Schatztruhe)[!][Jun 2000].iso / Aminet / dev / lang / sofa.lha / sofa / smalleiffel / lib_se / run_feature_10.e < prev    next >
Text File  |  2000-03-25  |  5KB  |  207 lines

  1. --          This file is part of SmallEiffel The GNU Eiffel Compiler.
  2. --          Copyright (C) 1994-98 LORIA - UHP - CRIN - INRIA - FRANCE
  3. --            Dominique COLNET and Suzanne COLLIN - colnet@loria.fr
  4. --                       http://SmallEiffel.loria.fr
  5. -- SmallEiffel is  free  software;  you can  redistribute it and/or modify it
  6. -- under the terms of the GNU General Public License as published by the Free
  7. -- Software  Foundation;  either  version  2, or (at your option)  any  later
  8. -- version. SmallEiffel is distributed in the hope that it will be useful,but
  9. -- WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. -- or  FITNESS FOR A PARTICULAR PURPOSE.   See the GNU General Public License
  11. -- for  more  details.  You  should  have  received a copy of the GNU General
  12. -- Public  License  along  with  SmallEiffel;  see the file COPYING.  If not,
  13. -- write to the  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  14. -- Boston, MA 02111-1307, USA.
  15. --
  16. class RUN_FEATURE_10
  17.    --
  18.    -- For some precursor procedure called feature.
  19.    --
  20.  
  21. inherit RUN_FEATURE redefine fall_down end;
  22.  
  23. creation {E_PRECURSOR_PROCEDURE} make
  24.  
  25. feature
  26.  
  27.    base_feature: EFFECTIVE_ROUTINE;
  28.  
  29.    arguments: FORMAL_ARG_LIST;
  30.  
  31.    require_assertion: RUN_REQUIRE;
  32.  
  33.    local_vars: LOCAL_VAR_LIST;
  34.  
  35.    routine_body: COMPOUND;
  36.  
  37.    rescue_compound: COMPOUND;
  38.  
  39.    ensure_assertion: E_ENSURE;
  40.  
  41.    is_deferred: BOOLEAN is false;
  42.  
  43.    is_static: BOOLEAN is false;
  44.  
  45.    is_pre_computable: BOOLEAN is false;
  46.  
  47.    can_be_dropped: BOOLEAN is false;
  48.  
  49.    is_once_function: BOOLEAN is false;
  50.  
  51.    is_once_procedure: BOOLEAN is
  52.      -- True when some once procedure is wrapped.
  53.       local
  54.      once_procedure: ONCE_PROCEDURE;
  55.       do
  56.      once_procedure ?= base_feature;
  57.      Result := once_procedure /= Void;
  58.       end;
  59.  
  60.    fall_down is
  61.       do
  62.       end;
  63.  
  64.    result_type: TYPE is
  65.       do
  66.       end;
  67.  
  68.    static_value_mem: INTEGER is
  69.       do
  70.       end;
  71.  
  72.    afd_check is
  73.       do
  74.          routine_afd_check;
  75.       end;
  76.  
  77.    mapping_c is
  78.       do
  79.          default_mapping_procedure;
  80.       end;
  81.  
  82.    c_define is
  83.       local
  84.      once_wrapper: BOOLEAN;
  85.       do
  86.      cpp.incr_precursor_routine_count;
  87.      once_wrapper := is_once_procedure;
  88.      if once_wrapper then
  89.         once_routine_pool.c_define_o_flag(Current);
  90.      end;
  91.          define_prototype;
  92.      if once_wrapper then
  93.         once_routine_pool.c_test_o_flag(Current);
  94.      end;
  95.          c_define_opening;
  96.          if routine_body /= Void then
  97.             routine_body.compile_to_c;
  98.          end;
  99.          c_define_closing;
  100.      if once_wrapper then
  101.         cpp.put_string("}}");
  102.      end;
  103.          cpp.put_string(fz_12);
  104.          c_frame_descriptor;
  105.       end;
  106.  
  107. feature {RUN_CLASS}
  108.  
  109.    jvm_field_or_method is
  110.       do
  111.          jvm.add_method(Current);
  112.       end;
  113.  
  114. feature
  115.  
  116.    mapping_jvm is
  117.       do
  118.          routine_mapping_jvm;
  119.       end;
  120.  
  121. feature {JVM}
  122.  
  123.    jvm_define is
  124.       do
  125.          method_info_start;
  126.          jvm_define_opening;
  127.          if routine_body /= Void then
  128.             routine_body.compile_to_jvm;
  129.          end;
  130.          jvm_define_closing;
  131.          code_attribute.opcode_return;
  132.          method_info.finish;
  133.       end;
  134.  
  135. feature {NONE}
  136.  
  137.    update_tmp_jvm_descriptor is
  138.       do
  139.          routine_update_tmp_jvm_descriptor;
  140.       end;
  141.  
  142. feature {CALL_PROC_CALL}
  143.  
  144.    collect_c_tmp is
  145.       do
  146.       end;
  147.  
  148. feature {ADDRESS_OF_POOL}
  149.  
  150.    address_of_c_define(caller: ADDRESS_OF) is
  151.       do
  152.       end;
  153.  
  154. feature {ADDRESS_OF}
  155.  
  156.    address_of_c_mapping is
  157.       do
  158.       end;
  159.  
  160. feature {NONE}
  161.  
  162.    compute_use_current is
  163.       do
  164.          std_compute_use_current;
  165.       end;
  166.  
  167.    initialize is
  168.       do
  169.          arguments := base_feature.arguments;
  170.          if arguments /= Void then
  171.             if not arguments.is_runnable(current_type) then
  172.                !!arguments.with(arguments,current_type);
  173.             end;
  174.          end;
  175.          local_vars := base_feature.local_vars;
  176.          if local_vars /= Void then
  177.             local_vars := local_vars.to_runnable(current_type);
  178.          end;
  179.          routine_body := base_feature.routine_body;
  180.          if routine_body /= Void then
  181.             routine_body := routine_body.to_runnable(current_type);
  182.          end;
  183.          if run_control.require_check then
  184.             require_assertion := run_require;
  185.          end;
  186.          if run_control.ensure_check then
  187.             ensure_assertion := run_ensure;
  188.          end;
  189.          rescue_compound := base_feature.rescue_compound;
  190.          if rescue_compound /= Void then
  191.             exceptions_handler.set_used;
  192.             rescue_compound := rescue_compound.to_runnable(current_type);
  193.          end;
  194.      if is_once_procedure then
  195.         once_routine_pool.register_procedure(Current);
  196.      end;
  197.       end;
  198.  
  199.    compute_stupid_switch(r: ARRAY[RUN_CLASS]) is
  200.       do
  201.          std_compute_stupid_switch(r);
  202.       end;
  203.  
  204.    stupid_switch_comment: STRING is "SSPRF10";
  205.  
  206. end -- RUN_FEATURE_10
  207.